home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Microsoft Interactive CD Sampler
/
Microsoft Interactive CD Sampler.iso
/
DEMOS
/
C_Automp
/
AUTOTP
/
IMD.CST
/
00009.ls
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-07-16
|
301 b
|
13 lines
on loadCast x,y
-- preloads cast into memory.
-- x - if x is a list then loads cast numbers in the list else x is starting range
-- y - ending range for preload of cast routine
if listP(x) then
repeat with z in x
preLoadCast z
end repeat
else
preLoadCast x,y
end if
end